home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Artbeats WebTools
/
Artbeats WebTools for Macintosh-Windows (Media ArtBeats)(Stat Media)(1.1)(1996).ISO
/
mac
/
PREVIEW.DIR
/
00010_Field_10.txt
< prev
next >
Wrap
Text File
|
1996-02-04
|
1KB
|
61 lines
----- window event display
on openWindow
put "openWindow"
end
on CloseWindow
put "CloseWindow"
end
on activateWindow
put "activateWindow"
end
on deActivateWindow
put "deActivateWindow"
end
on ZoomOutWindow
put "ZoomOutWindow"
end
on ZoomInWindow
put "ZoomInWindow"
end
on on MoveWindow
put "MoveWindow"
end
------------ 2/96 experiments -------------
set hiddenTileSwap = false
if hiddenTileSwap then -- go to trails version of current tile 2/3/96
if marker(0) = label("Tile128" & DepthSym) then
go to "Tile128Hold" & DepthSym -- trails ink version
go to frame frame() + 1 -- blank page showing trails
else
if marker(0) = label("Tile128_Big" & DepthSym) then
go to "Tile128Hold_Big" & DepthSym
go to frame frame() + 1 -- blank page showing trails
end if
end if
end if
--TEST $$$
if hiddenTileSwap then -- go to trails version of current tile 2/3/96
if marker(0) = label("Tile64" & DepthSym) then
go to "Tile64Hold" & DepthSym
go to frame frame() + 1 -- blank page showing trails
else
if marker(0) = label("Tile64_Big" & DepthSym) then
go to "Tile64Hold_Big" & DepthSym
go to frame frame() + 1 -- blank page showing trails
end if
end if
end if